home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / BadMasterDirectoryBlock.h < prev    next >
Text File  |  2000-06-23  |  328b  |  21 lines

  1. // BadMasterDirectoryBlock.h
  2.  
  3. #ifndef BadMasterDirectoryBlock_h
  4. #define BadMasterDirectoryBlock_h
  5.  
  6. #ifndef MountError_h
  7. #include "MountError.h"
  8. #endif
  9.  
  10. class BadMasterDirectoryBlock: public MountError
  11.   {
  12.     public:
  13.         BadMasterDirectoryBlock( OSErr error )
  14.           : MountError( error )
  15.           {}
  16.         
  17.         // used for badMDBErr
  18.   };
  19.  
  20. #endif
  21.